home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / include / sys / uio.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-08-11  |  209 b   |  14 lines

  1. /*
  2.  * DESQview/X Socket Library. Copyright (c) 1992 Quarterdeck Office Systems.
  3.  */
  4.  
  5. #ifndef _SYS_UIO_H_
  6. #define _SYS_UIO_H_
  7.  
  8. struct iovec {
  9.   char *iov_base;
  10.   unsigned long iov_len;
  11. };
  12.  
  13. #endif
  14.